home *** CD-ROM | disk | FTP | other *** search
- // Copyright (c)1995 Ray Dream, Inc. All Rights Reserved.
- /*$Id: FogFac.h 1.1 1996/07/18 23:43:07 Damien Exp $*/
-
- #ifndef __FOGFACT__
- #define __FOGFACT__
-
- #ifndef __I3DEX__
- #include "I3DEx.h"
- #endif
-
- // Atmos Class Factory :
- class AtmosClassFactory : public IClassFactory {
- public:
- AtmosClassFactory(void);
- ~AtmosClassFactory(void);
-
- //IUnknown members
- STDMETHODIMP QueryInterface(REFIID, LPVOID FAR*);
- STDMETHODIMP_(ULONG) AddRef(void);
- STDMETHODIMP_(ULONG) Release(void);
-
- //IClassFactory members
- STDMETHODIMP CreateInstance(LPUNKNOWN, REFIID, LPVOID FAR*);
- STDMETHODIMP LockServer(BOOL);
- protected:
- ULONG m_cRef;
- };
-
- #endif
-
-